home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1998 March / Software of the Month Club 1998 March.iso / mac / Latest & Greatest / PowerReplace 6.3 / Filter / 1. Small / StripSpace < prev    next >
Text File  |  1996-09-14  |  272b  |  15 lines

  1. % strip space using pattern
  2. % Guoniu Han, 1996/2/20
  3.  
  4. %change tab to space, how type tab using pattern?
  5. "\t"            " "
  6.  
  7. %skip spaces in the begin and the end of lines
  8. '^ +'           ""
  9. ' +$'           ""
  10.  
  11. %change more two space to one space
  12. '  +'           " "
  13.  
  14. %end
  15.